home *** CD-ROM | disk | FTP | other *** search
- on checkvideo
- global videonum
- set videonum to 0
- set mv to mouseV() - 245
- repeat with n = 1 to 5
- if (mv >= 1) and (mv <= 50) then
- set videonum to n
- end if
- set mv to mv - 39
- end repeat
- rollovervideo(videonum)
- end
-
- on rollovervideo videonum
- if videonum = 0 then
- exit
- end if
- puppetSprite(4, 1)
- set the type of sprite 4 to 1
- set the ink of sprite 4 to 0
- set the foreColor of sprite 4 to 255
- set the backColor of sprite 4 to 0
- set the castNum of sprite 4 to the number of member "selectedVideo"
- set the locH of sprite 4 to 26
- set the locV of sprite 4 to 208 + (videonum * 39)
- updateStage()
- end
-